QUESTION 1: ------------ Description: Write a program to print even number from 1 to 100 Example: --------- Output = 2,4,....100 QUESTION 2: ------------ Description: Find the sum of odd number 1 to 100 Example: -------- Output = 2500 QUESTION 3: ----------- Description: Count of even number 1 to 100 Example: -------- Output = 50 QUESTION 4: ----------- Description: Write a program to find the factorial of a number. Example: -------- Input = 5 Output = 120 QUESTION 5: ------------ Description: Write a program to print the fibonacci series of a number 1 to 100. Example: -------- Output = 0,1,1,2,3,5..... QUESTION 6: ----------- Description: Find prime number or not. Example: -------- Input = 11 Output = prime number QUESTION 7: ----------- Description : Print the below patterns using for loop. Output: ------- 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6 1 2 3 4 5 6 7 ----------------------- * * * * * * * * * * * * * * * -------------------------- * * * * * * * * * * * * * * * ----------------------------- * * * * * * * * * * * * * * * ---------------------------- 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 7 7 7 7 7 7 7 QUESTION 10: ------------- Description: Count of the number Example: -------- Input = 123 Output = 3 QUESTION 8: ------------- Description: Find Amstrong number or not Example: -------- Input = 153 Output = Amstrong number QUESTION 9: ------------- Description: Reverse the number Example: -------- Input = 123 Output = 321 QUESTION 11: ------------- Description: Sum of the number Example: -------- Input = 123 Output = 6 QUESTION 12: -------------- Description: Verify the number is palindrome number not Example: -------- Input = 141 Output = Palindrome